home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-02-19 | 1.7 KB | 75 lines | [TEXT/MPS ] |
- #
- # File: SC.make
- #
- # Contains: Build variables for SC compiler
- #
- # Written by: Steve Smith
- #
- # Copyright: © 1994,95 by Apple Computer, Inc., all rights reserved.
- #
- # Change History (most recent first):
- #
-
- DumpFileSize = 2000
-
- # ----------------------------------------------------------------------
- # Compiler
- # ----------------------------------------------------------------------
-
- C = SC
- CPlus = SCpp
-
- SymOption = full
- MacsbugOption = full
- OptimizationOption = off
- CodeModelOption = cfmflat
- CodeSegmentOptions = -bigseg -onefrag
- InlineStringsOption = -b3
- CodeGenOptions = -mc68030
- StructAlignmentOption = mac68k
- WarningOption = -w 17
-
- GOptions = -d _PLATFORM_MACINTOSH_=1 ∂
- -d _PLATFORM_BIG_ENDIAN_=1 ∂
- -align {StructAlignmentOption} ∂
- {CodeGenOptions} ∂
- -model {CodeModelOption} ∂
- {CodeSegmentOptions} ∂
- -sym {SymOption} ∂
- -mbg {MacsbugOption} ∂
- {InlineStringsOption} ∂
- -opt {OptimizationOption} ∂
- {WarningOption}
-
- COptions = {GOptions}
- CPlusOptions = {GOptions}
-
- # ----------------------------------------------------------------------
- # Linker
- # ----------------------------------------------------------------------
-
- LinkTool = ILink
-
- ILinkOptions = -model {CodeModelOption} ∂
- -sym {SymOption} ∂
- -mf
-
- ILinkShLibOptions = -xm s
-
- ShLibPreLibraries =
-
- ShLibPostLibraries = {Default68kPostLibs}
-
- # ----------------------------------------------------------------------
- # Post Processing
- # ----------------------------------------------------------------------
-
- SymTool = ILinkToSym
-
- MergeFragmentOptions = -c
- MergeFragment68KOption = -t m68k
- MergeFragmentShLibOptions = {MergeFragment68KOption}
-
- MakeSymOptions = -i "{OpenDocDir}" -r
-
-